Remove an empty Tuple(s) from a List of Tuples

Remove an empty Tuple(s) from a List of Tuples.
Sample data:
[(), (), (‘’,), (‘a’, ‘b’), (‘a’, ‘b’, ‘c’), (‘d’)]
Expected output:
[(‘’,), (‘a’, ‘b’), (‘a’, ‘b’, ‘c’), ‘d’]
LOT = [
        (),
        (),
        ('',),
        ('a', 'b'),
        ('a', 'b', 'c'),
        ('d'),
      ]
LOT = [tpl for tpl in LOT if tpl]
print(LOT)

Output:

[('',), ('a', 'b'), ('a', 'b', 'c'), 'd']